home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_c / lsdoor09.zip / WSTRING.H < prev   
C/C++ Source or Header  |  1995-12-09  |  671b  |  39 lines

  1. //   String subroutine add-ons to the C/C++ string code.  This header only
  2. //  needed if WSTRING.CPP is a seperate module in your project.
  3. //
  4. //    This file and WSTRING.CPP are public domain and you may use them 
  5. //  however you wish.  See WSTRING.CPP for expaination of the functions.
  6. //
  7. //   Author: Terror   4/20/94
  8. //
  9.  
  10. char *strins( char *stri, int at, char whattoinsert=' ' );
  11. char *strdel( char *strd, int at );
  12. char *strsub( char *str, char *strnew, int start );
  13.  
  14. char *strstri( char *, char * );
  15. char *strfind( char *, char * );
  16. char *strnfind( char *, char *, int );
  17. //int   strlcmp( char *, char * );
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.